projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b547b6e
)
(x_draw_glyphs): Don't check for cursor overwriting
author
Gerd Moellmann
<gerd@gnu.org>
Wed, 24 Oct 2001 16:05:41 +0000
(16:05 +0000)
committer
Gerd Moellmann
<gerd@gnu.org>
Wed, 24 Oct 2001 16:05:41 +0000
(16:05 +0000)
in full-width rows.
src/ChangeLog
patch
|
blob
|
history
src/xterm.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index 692abf804cafa0e0b057a6ca56b930f72ccbe95a..463bcdc03641dce57131cddfe96b857cc180f4ec 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,5
+1,8
@@
2001-10-24 Gerd Moellmann <gerd@gnu.org>
+ * xterm.c (x_draw_glyphs): Don't check for cursor overwriting
+ in full-width rows.
+
* xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
Fix clearing of area not covered by scroll bar.
diff --git
a/src/xterm.c
b/src/xterm.c
index d134162f3c3d0ff32a1431082accc0bd7a156457..a757caaa668a101133bb4cc3f3a0c89af9e3ed2b 100644
(file)
--- a/
src/xterm.c
+++ b/
src/xterm.c
@@
-5171,7
+5171,7
@@
x_draw_glyphs (w, x, row, area, start, end, hl, overlaps_p)
for (s = head; s; s = s->next)
x_draw_glyph_string (s);
- if (area == TEXT_AREA)
+ if (area == TEXT_AREA
&& !row->full_width_p
)
{
int x0 = head ? head->x : x;
int x1 = tail ? tail->x + tail->background_width : x;